ALTER TABLE `wood_product_history` CHANGE `dimensions_prices` `dimensions_price` LONGTEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL;

UPDATE wood_product_pricing
SET price = ROUND(price * 10)

ALTER TABLE `wood_product_pricing` CHANGE `price` `price` BIGINT NULL DEFAULT NULL;

ALTER TABLE `wood_product_pricing` CHANGE `weight` `weight` BIGINT NULL DEFAULT NULL;

ALTER TABLE `wood_product` ADD `grain_matchable` INT NOT NULL DEFAULT '0' AFTER `is_not_available`;

ALTER TABLE `wood_product_history` ADD `grain_matchable` INT NOT NULL AFTER `is_not_available`;